home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 2 / CU Amiga Magazine's Super CD-ROM 02 (1996)(EMAP Images)(GB)[!][issue 1996-04].iso / magazine / amiga_e / amigae.jan.archive / 000074_crash!undergrad…oo.ca!clgonsal_Thu, 27 Jan 94 02:06:28 PST.msg < prev    next >
Text File  |  1994-02-17  |  5KB  |  110 lines

  1. Received: by bkhouse.cts.com (V1.17-beta/Amiga)
  2.       id <1o6o@bkhouse.cts.com>; Thu, 27 Jan 94 02:06:28 PST
  3. Received: from undergrad.math.uwaterloo.ca by crash.cts.com with smtp
  4.     (Smail3.1.28.1 #18) id m0pPNb2-0000moC; Wed, 26 Jan 94 19:40 PST
  5. Received: from cayley.uwaterloo.ca by undergrad.math.uwaterloo.ca id <56952-1>; Wed, 26 Jan 1994 22:40:35 -0500
  6. Date: Wed, 26 Jan 1994 22:40:32 -0500
  7. In-Reply-To: <MAILQUEUE-101.940112113934.320@rcbins.mu.wvnet.edu> from "R. Alan Monroe" at Jan 12, 94 11:39:34 am
  8. X-Mailer: ELM [version 2.4 PL23]
  9. MIME-Version: 1.0
  10. Content-Type: text/plain; charset=US-ASCII
  11. Content-Transfer-Encoding: 7bit
  12. Content-Length: 1288
  13. Message-Id: <94Jan26.224035est.56952-1@undergrad.math.uwaterloo.ca>
  14. From: Carl Laurence Gonsalves <clgonsal@undergrad.math.uwaterloo.ca>
  15. To: AmigaE@bkhouse.cts.com
  16. Subject: Re: circles
  17.  
  18.  
  19. > How do you draw circles in a window on the workbench screen using
  20. > graphics.library?
  21. > I got "AreaExamples" from aminet which would be perfect except that
  22. > it's in C and I don't know C.  I can follow what they are doing but I
  23. > don't know what the "*" thing does in C so I don't know how to make
  24. > my variables.
  25.  
  26. The "* thing" is the indirection operator. It works like this:
  27.  
  28. Say you have a pointer called "ptr".
  29.  
  30. If you use "ptr" you're talking about the address (ie: what ptr
  31. actually holds). If you say "*ptr" it's referring to what the pointer
  32. actually points to. I don't program in E, so I'm not sure how
  33. you're used to dealing with pointers... In fact, I couldn't make much sense
  34. of the code you posted, so I couldn't tell what was wrong with it.
  35.  
  36. I think you mentioned that you have some of the 1.3 RKM's. Since the area
  37. functions didn't change (at least, I don't *think* they changed... and
  38. they'd still be downward compatible) you should look in those for
  39. information.
  40.  
  41. BTW, your problem might be that you never declare stdrast. Of course,
  42. AmigaE might declare it for you (like I said, I don't program in E).
  43.  
  44. -- 
  45.    __
  46. __/// clgonsal@undergrad.math.uwaterloo.ca - Only Amiga Makes it Possible!
  47. \XX/ Life is pain. Anyone who says differently is trying to sell something
  48. From crash!mhd1.moorhead.msus.edu!platt Thu, 27 Jan 94 02:06:42 PST
  49. Received: by bkhouse.cts.com (V1.17-beta/Amiga)
  50.       id <1o6x@bkhouse.cts.com>; Thu, 27 Jan 94 02:06:42 PST
  51. Received: from mhd1.moorhead.msus.edu by crash.cts.com with smtp
  52.     (Smail3.1.28.1 #18) id m0pPOHQ-0000nMC; Wed, 26 Jan 94 20:24 PST
  53. Received: by mhd1.moorhead.msus.edu (5.65/DEC-Ultrix/4.3)
  54.     id AA01274; Wed, 26 Jan 1994 22:25:18 -0600
  55. Message-Id: <9401270425.AA01274@mhd1.moorhead.msus.edu>
  56. Date: Wed, 26 Jan 1994 22:25:17 -0600 (CST)
  57. In-Reply-To: <199401251605.LAA12182@freenet.carleton.ca> from "ao443@freenet.carleton.ca" at Jan 25, 94 11:05:30 am
  58. X-Mailer: ELM [version 2.4 PL20]
  59. Content-Type: text
  60. Content-Length: 1482
  61. From: platt@mhd1.moorhead.msus.edu (Vincent Platt)
  62. To: AmigaE@bkhouse.cts.com
  63. Subject: Re: EFormat
  64.  
  65. > >
  66. > >Has anyone had any problems with EFormat?  After it finishes processing my
  67. > >file with a command line like so: eformat ppi.e >ppinew.e it gives me back
  68. > >the command line.  Then I type my next command or just hit return and it
  69. > >gurus.  It does this every time and is definitely reproducable.  I'm using
  70. > >2.04, A500 (w/ a A500-HD8+ 120 meg & a 68010).
  71. > >
  72. >     Ok, first, what version do you have, and second, try the command
  73. > line like this. 
  74. > 'eformat >ram:Newfile.e oldfile.e'
  75. >    If you still have problems with it, give me a shout.. I'll take another
  76. > look at the code today and see if I can see anything I missed.
  77.  
  78. I have version 1.2.  Here are the individual cases:
  79.  
  80. if I type:            I get:
  81.  
  82. eformat (no arguments)        my command line back (no problems)
  83. eformat file.e            output then guru (suspend/reboot) 8000 0003
  84. eformat >file2.e file.e        guru, no output
  85. eformat file.e >file2.e        output to file, then guru
  86.  
  87. It's just a guess, but I think that resources are being deallocated
  88. improperly.  I'm not being critical.  I'm not very good with E yet, or I
  89. would try fixing it myself.
  90.  
  91. Thanks.
  92.  
  93. Oh, I'm using 2.04 and in my WBStartup drawer I have the following:
  94.  
  95. AddTools
  96. DropBox
  97. Exchange
  98. MagicMenu
  99. RexxMast
  100. RTPatch
  101. Storage
  102. Yak
  103.  
  104. Also I run NickPrefs at startup.  However, I just did that recently, and
  105. Eformat demonstrated this problem before I installed that.  Honestly, I
  106. don't think it could be one of the utilities I have listed above, but I
  107. list them just in case.
  108.